Tables [dbo].[LicenseLegacyList]
Properties
PropertyValue
Created10:31:26 AM Tuesday, March 02, 2010
Last Modified11:40:03 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_LicenseLegacyList: LicenseLegacyKeyLicenseLegacyKeyuniqueidentifier16
No
Indexes IX_LicenseLegacyList: LegacyLicenseCodeLegacyLicenseCodenvarchar(100)200
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_LicenseLegacyList: LicenseLegacyKeyPK_LicenseLegacyListLicenseLegacyKey
Yes
IX_LicenseLegacyListLegacyLicenseCode
SQL Script
CREATE TABLE [dbo].[LicenseLegacyList]
(
[LicenseLegacyKey] [uniqueidentifier] NOT NULL,
[LegacyLicenseCode] [nvarchar] (100) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[LicenseLegacyList] ADD CONSTRAINT [PK_LicenseLegacyList] PRIMARY KEY CLUSTERED ([LicenseLegacyKey]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [IX_LicenseLegacyList] ON [dbo].[LicenseLegacyList] ([LegacyLicenseCode]) ON [PRIMARY]
GO
Uses
Used By